2026-04-30 16:51:14,068 [ 264875 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:42, check_args_and_update_paths) 2026-04-30 16:51:14,069 [ 264875 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:86, check_args_and_update_paths) 2026-04-30 16:51:14,069 [ 264875 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:97, check_args_and_update_paths) 2026-04-30 16:51:14,069 [ 264875 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:99, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_996mye --privileged --dns-search='.' --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=2cffe1eae894 -e DOCKER_BASE_TAG=1e0b53d756cf -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=caad4729259e -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=1 --color=no --durations=0 test_keeper_internal_secure/test.py::test_secure_raft_works_with_password test_library_bridge/test.py::test_server_restart_bridge_might_be_still_alive test_library_bridge/test.py::test_ssrf test_materialized_mysql_database/test.py::test_binlog_client test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_5_7 test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_8_0 test_materialized_mysql_database/test.py::test_create_database_without_mysql_connection test_materialized_mysql_database/test.py::test_create_table_as_select test_materialized_mysql_database/test.py::test_default_values -vvv" altinityinfra/integration-tests-runner:37a9815fd2fa '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: order-1.0.1, random-0.2, timeout-2.2.0, repeat-0.9.3, reportlog-0.4.0, xdist-3.5.0 timeout: 900.0s timeout method: signal timeout func_only: False collecting ... collected 9 items test_keeper_internal_secure/test.py::test_secure_raft_works_with_password PASSED [ 11%] test_library_bridge/test.py::test_server_restart_bridge_might_be_still_alive PASSED [ 22%] test_library_bridge/test.py::test_ssrf SKIPPED (Sanitizer cannot work with third-party shared libraries) [ 33%] test_materialized_mysql_database/test.py::test_binlog_client PASSED [ 44%] test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_5_7 FAILED [ 55%] test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_8_0 FAILED [ 66%] test_materialized_mysql_database/test.py::test_create_database_without_mysql_connection FAILED [ 77%] test_materialized_mysql_database/test.py::test_create_table_as_select FAILED [ 88%] test_materialized_mysql_database/test.py::test_default_values FAILED [100%] =================================== FAILURES =================================== ___________________ test_clickhouse_killed_while_insert_5_7 ____________________ started_cluster = started_mysql_5_7 = clickhouse_node = def test_clickhouse_killed_while_insert_5_7( started_cluster, started_mysql_5_7, clickhouse_node ): > materialized_with_ddl.clickhouse_killed_while_insert( clickhouse_node, started_mysql_5_7, "mysql57" ) test_materialized_mysql_database/test.py:506: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_materialized_mysql_database/materialized_with_ddl.py:1553: in clickhouse_killed_while_insert clickhouse_node.restart_clickhouse(20, kill=True) helpers/cluster.py:4055: in restart_clickhouse self.start_clickhouse(stop_start_wait_sec) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = start_wait_sec = 20, retry_start = True, expected_to_fail = False def start_clickhouse( self, start_wait_sec=60, retry_start=True, expected_to_fail=False ): if not self.stay_alive: raise Exception( "ClickHouse can be started again only with stay_alive=True instance" ) start_time = time.time() time_to_sleep = 0.5 while start_time + start_wait_sec >= time.time(): # sometimes after SIGKILL (hard reset) server may refuse to start for some time # for different reasons. pid = self.get_process_pid("clickhouse") if pid is None: logging.debug("No clickhouse process running. Start new one.") self.exec_in_container( ["bash", "-c", "{} --daemon".format(self.clickhouse_start_command)], user=str(os.getuid()), ) if expected_to_fail: self.wait_start_failed(start_wait_sec + start_time - time.time()) return time.sleep(1) continue else: logging.debug("Clickhouse process running.") if expected_to_fail: raise Exception("ClickHouse was expected not to be running.") try: self.wait_start(start_wait_sec + start_time - time.time()) return except Exception as e: logging.warning( f"Current start attempt failed. Will kill {pid} just in case." ) self.exec_in_container( ["bash", "-c", f"kill -9 {pid}"], user="root", nothrow=True ) if not retry_start: raise time.sleep(time_to_sleep) > raise Exception("Cannot start ClickHouse, see additional info in logs") E Exception: Cannot start ClickHouse, see additional info in logs helpers/cluster.py:3992: Exception ------------------------------ Captured log call ------------------------------- 2026-04-30 17:08:54 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:08:54 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:08:54 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:08:54 [ 365 ] DEBUG : Executing query CREATE DATABASE kill_clickhouse_while_insert ENGINE = MaterializedMySQL('mysql57:3306', 'kill_clickhouse_while_insert', 'root', 'clickhouse') on node1 (cluster.py:3602, query) 2026-04-30 17:08:56 [ 365 ] DEBUG : Executing query /* expect: test*/ SHOW TABLES FROM kill_clickhouse_while_insert FORMAT TSV on node1 (cluster.py:3602, query) 2026-04-30 17:08:57 [ 365 ] DEBUG : latest_result (materialized_with_ddl.py:34, check_query) 2026-04-30 17:08:58 [ 365 ] DEBUG : Executing query /* expect: test*/ SHOW TABLES FROM kill_clickhouse_while_insert FORMAT TSV on node1 (cluster.py:3602, query) 2026-04-30 17:09:00 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:00 [ 365 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', 'ps -C clickhouse'] (cluster.py:113, run_and_check) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:121, run_and_check) 2026-04-30 17:09:00 [ 365 ] DEBUG : Stdout: 905 ? 00:13:00 clickhouse (cluster.py:121, run_and_check) 2026-04-30 17:09:00 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill -9 clickhouse'] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:00 [ 365 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', 'pkill -9 clickhouse'] (cluster.py:113, run_and_check) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:00 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:01 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:01 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : No clickhouse process running. Start new one. (cluster.py:3964, start_clickhouse) 2026-04-30 17:09:01 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', 'clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon'] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:01 [ 365 ] DEBUG : Command:['docker', 'exec', '-u', '0', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', 'clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon'] (cluster.py:113, run_and_check) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:01 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:02 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:03 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:03 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:09:04 [ 365 ] DEBUG : Clickhouse process running. (cluster.py:3975, start_clickhouse) 2026-04-30 17:09:04 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:04 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:09:04 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:04 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:05 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:06 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:07 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:08 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:09 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:10 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:11 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:12 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.2:3306 (test.py:89, alloc_connection) 2026-04-30 17:09:13 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:15 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:16 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:17 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:17 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:09:18 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:09:18 [ 365 ] WARNING : ERROR Client failed! Return code: 210, stderr: Code: 210. DB::NetException: Connection refused (172.16.3.4:9000). (NETWORK_ERROR) (cluster.py:4008, wait_start) 2026-04-30 17:09:18 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:18 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:09:18 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:09:18 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:20 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:21 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:23 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:24 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:25 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:26 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:27 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:28 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:30 [ 365 ] DEBUG : Executing query select 20 on node1 (cluster.py:3602, query) 2026-04-30 17:09:31 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:31 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:09:31 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:09:31 [ 365 ] WARNING : ERROR Client failed! Return code: 210, stderr: Code: 210. DB::NetException: Connection refused (172.16.3.4:9000). (NETWORK_ERROR) (cluster.py:4008, wait_start) 2026-04-30 17:09:31 [ 365 ] ERROR : No time left to start. But process is still running. Will dump threads. (cluster.py:4013, wait_start) 2026-04-30 17:09:31 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:31 [ 365 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', 'ps -C clickhouse'] (cluster.py:113, run_and_check) 2026-04-30 17:09:32 [ 365 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:121, run_and_check) 2026-04-30 17:09:32 [ 365 ] DEBUG : Stdout: 1790 ? 00:02:53 clickhouse (cluster.py:121, run_and_check) 2026-04-30 17:09:32 [ 365 ] INFO : PS RESULT: PID TTY TIME CMD 1790 ? 00:02:53 clickhouse (cluster.py:4019, wait_start) 2026-04-30 17:09:32 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:32 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:09:32 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:09:32 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "gdb -batch -ex 'thread apply all bt full' -p 1790"] (cluster.py:2173, exec_in_container) 2026-04-30 17:09:32 [ 365 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "gdb -batch -ex 'thread apply all bt full' -p 1790"] (cluster.py:113, run_and_check) 2026-04-30 17:14:32 [ 365 ] WARNING : Current start attempt failed. Will kill 1790 just in case. (cluster.py:3982, start_clickhouse) 2026-04-30 17:14:32 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:True cmd: ['bash', '-c', 'kill -9 1790'] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:32 [ 365 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', 'kill -9 1790'] (cluster.py:113, run_and_check) ___________________ test_clickhouse_killed_while_insert_8_0 ____________________ started_cluster = started_mysql_8_0 = clickhouse_node = def test_clickhouse_killed_while_insert_8_0( started_cluster, started_mysql_8_0, clickhouse_node ): > materialized_with_ddl.clickhouse_killed_while_insert( clickhouse_node, started_mysql_8_0, "mysql80" ) test_materialized_mysql_database/test.py:514: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_materialized_mysql_database/materialized_with_ddl.py:1531: in clickhouse_killed_while_insert clickhouse_node.query( helpers/cluster.py:3603: in query return self.client.query( helpers/client.py:36: in wrap return func(self, *args, **kwargs) helpers/client.py:74: in query ).get_answer() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = def get_answer(self): self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT) self.stdout_file.seek(0) self.stderr_file.seek(0) stdout = self.stdout_file.read().decode("utf-8", errors="replace") stderr = self.stderr_file.read().decode("utf-8", errors="replace") if ( self.timer is not None and not self.process_finished_before_timeout and not self.ignore_error ): logging.debug(f"Timed out. Last stdout:{stdout}, stderr:{stderr}") raise QueryTimeoutExceedException("Client timed out!") if ( self.process.returncode != 0 or self.remove_trash_from_stderr(stderr) ) and not self.ignore_error: > raise QueryRuntimeException( "Client failed! Return code: {}, stderr: {}".format( self.process.returncode, stderr ), self.process.returncode, stderr, ) E helpers.client.QueryRuntimeException: Client failed! Return code: 210, stderr: Code: 210. DB::NetException: Connection refused (172.16.3.4:9000). (NETWORK_ERROR) helpers/client.py:239: QueryRuntimeException ------------------------------ Captured log call ------------------------------- 2026-04-30 17:14:34 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.3:3306 (test.py:89, alloc_connection) 2026-04-30 17:14:34 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.3:3306 (test.py:89, alloc_connection) 2026-04-30 17:14:34 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.3:3306 (test.py:89, alloc_connection) 2026-04-30 17:14:34 [ 365 ] DEBUG : Executing query CREATE DATABASE kill_clickhouse_while_insert ENGINE = MaterializedMySQL('mysql80:3306', 'kill_clickhouse_while_insert', 'root', 'clickhouse') on node1 (cluster.py:3602, query) ________________ test_create_database_without_mysql_connection _________________ started_cluster = started_mysql_8_0 = clickhouse_node = def test_create_database_without_mysql_connection( started_cluster, started_mysql_8_0, clickhouse_node: ClickHouseInstance ): > materialized_with_ddl.mysql_create_database_without_connection( clickhouse_node, started_mysql_8_0, "mysql80" ) test_materialized_mysql_database/test.py:729: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_materialized_mysql_database/materialized_with_ddl.py:3420: in mysql_create_database_without_connection clickhouse_node.query("DROP DATABASE IF EXISTS create_without_connection") helpers/cluster.py:3603: in query return self.client.query( helpers/client.py:36: in wrap return func(self, *args, **kwargs) helpers/client.py:74: in query ).get_answer() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = def get_answer(self): self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT) self.stdout_file.seek(0) self.stderr_file.seek(0) stdout = self.stdout_file.read().decode("utf-8", errors="replace") stderr = self.stderr_file.read().decode("utf-8", errors="replace") if ( self.timer is not None and not self.process_finished_before_timeout and not self.ignore_error ): logging.debug(f"Timed out. Last stdout:{stdout}, stderr:{stderr}") raise QueryTimeoutExceedException("Client timed out!") if ( self.process.returncode != 0 or self.remove_trash_from_stderr(stderr) ) and not self.ignore_error: > raise QueryRuntimeException( "Client failed! Return code: {}, stderr: {}".format( self.process.returncode, stderr ), self.process.returncode, stderr, ) E helpers.client.QueryRuntimeException: Client failed! Return code: 210, stderr: Code: 210. DB::NetException: Connection refused (172.16.3.4:9000). (NETWORK_ERROR) helpers/client.py:239: QueryRuntimeException ------------------------------ Captured log call ------------------------------- 2026-04-30 17:14:35 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.3:3306 (test.py:89, alloc_connection) 2026-04-30 17:14:35 [ 365 ] DEBUG : Executing query DROP DATABASE IF EXISTS create_without_connection on node1 (cluster.py:3602, query) _________________________ test_create_table_as_select __________________________ started_cluster = started_mysql_8_0 = clickhouse_node = def test_create_table_as_select(started_cluster, started_mysql_8_0, clickhouse_node): > materialized_with_ddl.create_table_as_select( clickhouse_node, started_mysql_8_0, "mysql80" ) test_materialized_mysql_database/test.py:697: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_materialized_mysql_database/materialized_with_ddl.py:2659: in create_table_as_select clickhouse_node.query(f"DROP DATABASE IF EXISTS {db}") helpers/cluster.py:3603: in query return self.client.query( helpers/client.py:36: in wrap return func(self, *args, **kwargs) helpers/client.py:74: in query ).get_answer() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = def get_answer(self): self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT) self.stdout_file.seek(0) self.stderr_file.seek(0) stdout = self.stdout_file.read().decode("utf-8", errors="replace") stderr = self.stderr_file.read().decode("utf-8", errors="replace") if ( self.timer is not None and not self.process_finished_before_timeout and not self.ignore_error ): logging.debug(f"Timed out. Last stdout:{stdout}, stderr:{stderr}") raise QueryTimeoutExceedException("Client timed out!") if ( self.process.returncode != 0 or self.remove_trash_from_stderr(stderr) ) and not self.ignore_error: > raise QueryRuntimeException( "Client failed! Return code: {}, stderr: {}".format( self.process.returncode, stderr ), self.process.returncode, stderr, ) E helpers.client.QueryRuntimeException: Client failed! Return code: 210, stderr: Code: 210. DB::NetException: Connection refused (172.16.3.4:9000). (NETWORK_ERROR) helpers/client.py:239: QueryRuntimeException ------------------------------ Captured log call ------------------------------- 2026-04-30 17:14:36 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.3:3306 (test.py:89, alloc_connection) 2026-04-30 17:14:36 [ 365 ] DEBUG : Executing query DROP DATABASE IF EXISTS create_table_as_select on node1 (cluster.py:3602, query) _____________________________ test_default_values ______________________________ started_cluster = started_mysql_8_0 = clickhouse_node = def test_default_values(started_cluster, started_mysql_8_0, clickhouse_node): > materialized_with_ddl.default_values(clickhouse_node, started_mysql_8_0, "mysql80") test_materialized_mysql_database/test.py:578: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_materialized_mysql_database/materialized_with_ddl.py:1881: in default_values clickhouse_node.query(f"DROP DATABASE IF EXISTS {db}") helpers/cluster.py:3603: in query return self.client.query( helpers/client.py:36: in wrap return func(self, *args, **kwargs) helpers/client.py:74: in query ).get_answer() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = def get_answer(self): self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT) self.stdout_file.seek(0) self.stderr_file.seek(0) stdout = self.stdout_file.read().decode("utf-8", errors="replace") stderr = self.stderr_file.read().decode("utf-8", errors="replace") if ( self.timer is not None and not self.process_finished_before_timeout and not self.ignore_error ): logging.debug(f"Timed out. Last stdout:{stdout}, stderr:{stderr}") raise QueryTimeoutExceedException("Client timed out!") if ( self.process.returncode != 0 or self.remove_trash_from_stderr(stderr) ) and not self.ignore_error: > raise QueryRuntimeException( "Client failed! Return code: {}, stderr: {}".format( self.process.returncode, stderr ), self.process.returncode, stderr, ) E helpers.client.QueryRuntimeException: Client failed! Return code: 210, stderr: Code: 210. DB::NetException: Connection refused (172.16.3.4:9000). (NETWORK_ERROR) helpers/client.py:239: QueryRuntimeException ------------------------------ Captured log call ------------------------------- 2026-04-30 17:14:37 [ 365 ] DEBUG : MySQL Connection established: 172.16.3.3:3306 (test.py:89, alloc_connection) 2026-04-30 17:14:37 [ 365 ] DEBUG : Executing query DROP DATABASE IF EXISTS default_values on node1 (cluster.py:3602, query) ---------------------------- Captured log teardown ----------------------------- 2026-04-30 17:14:38 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:38 [ 365 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', 'ps -C clickhouse'] (cluster.py:113, run_and_check) 2026-04-30 17:14:38 [ 365 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:121, run_and_check) 2026-04-30 17:14:38 [ 365 ] DEBUG : Stdout: 1790 ? 00:03:04 clickhouse (cluster.py:121, run_and_check) 2026-04-30 17:14:38 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill clickhouse'] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:38 [ 365 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', 'pkill clickhouse'] (cluster.py:113, run_and_check) 2026-04-30 17:14:39 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:39 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:39 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:40 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:40 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:41 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:42 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:42 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:42 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:43 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:43 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:43 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:44 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:44 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:45 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:46 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:46 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:46 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:47 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:47 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:48 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:49 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:49 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:49 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:50 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:50 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:51 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:52 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:52 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:52 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:53 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:53 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:53 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:54 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:54 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:55 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:56 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:56 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:56 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:57 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:57 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:58 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:14:59 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:14:59 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:14:59 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:15:00 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:15:00 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:15:01 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:15:02 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:15:02 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:15:02 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:15:03 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:15:03 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:15:03 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:15:04 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:15:04 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:15:05 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:15:06 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:15:06 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:15:06 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:15:07 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:15:07 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:15:08 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:15:09 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:15:09 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:15:09 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:15:10 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2173, exec_in_container) 2026-04-30 17:15:10 [ 365 ] DEBUG : Command:['docker', 'exec', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:113, run_and_check) 2026-04-30 17:15:10 [ 365 ] DEBUG : Stdout:1790 (cluster.py:121, run_and_check) 2026-04-30 17:15:10 [ 365 ] WARNING : Force kill clickhouse in stop_clickhouse. ps:1790 (cluster.py:3926, stop_clickhouse) 2026-04-30 17:15:10 [ 365 ] DEBUG : run container_id:roottestmaterializedmysqldatabase_node1_1 detach:False nothrow:False cmd: ['bash', '-c', "gdb -batch -ex 'thread apply all bt full' -p 1790 > /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node1/logs/stdout.log"] (cluster.py:2173, exec_in_container) 2026-04-30 17:15:10 [ 365 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "gdb -batch -ex 'thread apply all bt full' -p 1790 > /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node1/logs/stdout.log"] (cluster.py:113, run_and_check) 2026-04-30 17:15:11 [ 365 ] DEBUG : Stderr:bash: line 1: /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node1/logs/stdout.log: No such file or directory (cluster.py:123, run_and_check) 2026-04-30 17:15:11 [ 365 ] DEBUG : Exitcode:1 (cluster.py:125, run_and_check) 2026-04-30 17:15:11 [ 365 ] WARNING : Stop ClickHouse raised an error Command ['docker', 'exec', '-u', 'root', 'roottestmaterializedmysqldatabase_node1_1', 'bash', '-c', "gdb -batch -ex 'thread apply all bt full' -p 1790 > /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node1/logs/stdout.log"] return non-zero code 1: bash: line 1: /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node1/logs/stdout.log: No such file or directory (cluster.py:3947, stop_clickhouse) 2026-04-30 17:15:13 [ 365 ] DEBUG : Command:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/.env', '--project-name', 'roottestmaterializedmysqldatabase', '--file', '/ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node1/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_mysql.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_mysql_8_0.yml', '--file', '/ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node3/docker-compose.yml', 'stop', '--timeout', '20'] (cluster.py:113, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_node2_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_node1_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_node3_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_mysql80_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_mysql57_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_node3_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_node2_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_node1_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_mysql80_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Stderr:Stopping roottestmaterializedmysqldatabase_mysql57_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Command:['bash', '-c', '[ -f /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node1/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node1/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true'] (cluster.py:113, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Command:['bash', '-c', '[ -f /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node2/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node2/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true'] (cluster.py:113, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Command:['bash', '-c', '[ -f /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node3/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node3/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true'] (cluster.py:113, run_and_check) 2026-04-30 17:15:22 [ 365 ] DEBUG : Command:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/.env', '--project-name', 'roottestmaterializedmysqldatabase', '--file', '/ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node1/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_mysql.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_mysql_8_0.yml', '--file', '/ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_materialized_mysql_database/_instances_1/node3/docker-compose.yml', 'down', '--volumes'] (cluster.py:113, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_node2_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_node1_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_node3_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_mysql80_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_mysql57_1 ... (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_node2_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_node3_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_node1_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_mysql57_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing roottestmaterializedmysqldatabase_mysql80_1 ... done (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stderr:Removing network roottestmaterializedmysqldatabase_default (cluster.py:123, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Cleanup called (cluster.py:876, cleanup) 2026-04-30 17:15:24 [ 365 ] DEBUG : Docker networks for project roottestmaterializedmysqldatabase are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2026-04-30 17:15:24 [ 365 ] DEBUG : Docker containers for project roottestmaterializedmysqldatabase are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2026-04-30 17:15:24 [ 365 ] DEBUG : Docker volumes for project roottestmaterializedmysqldatabase are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2026-04-30 17:15:24 [ 365 ] DEBUG : Command:docker container list --all --filter name='^/roottestmaterializedmysqldatabase_.*_1$' --format '{{.ID}}:{{.Names}}' (cluster.py:113, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Unstopped containers: {} (cluster.py:890, cleanup) 2026-04-30 17:15:24 [ 365 ] DEBUG : No running containers for project: roottestmaterializedmysqldatabase (cluster.py:904, cleanup) 2026-04-30 17:15:24 [ 365 ] DEBUG : Trying to prune unused networks... (cluster.py:910, cleanup) 2026-04-30 17:15:24 [ 365 ] DEBUG : Trying to prune unused images... (cluster.py:926, cleanup) 2026-04-30 17:15:24 [ 365 ] DEBUG : Command:['docker', 'image', 'prune', '-f'] (cluster.py:113, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:121, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Images pruned (cluster.py:929, cleanup) 2026-04-30 17:15:24 [ 365 ] DEBUG : Trying to prune unused volumes... (cluster.py:935, cleanup) 2026-04-30 17:15:24 [ 365 ] DEBUG : Command:['docker volume ls | wc -l'] (cluster.py:113, run_and_check) 2026-04-30 17:15:24 [ 365 ] DEBUG : Stdout:1 (cluster.py:121, run_and_check) ============================== slowest durations =============================== 577.05s call test_materialized_mysql_database/test.py::test_binlog_client 338.86s call test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_5_7 158.73s call test_keeper_internal_secure/test.py::test_secure_raft_works_with_password 96.40s setup test_materialized_mysql_database/test.py::test_binlog_client 83.97s call test_library_bridge/test.py::test_server_restart_bridge_might_be_still_alive 56.76s setup test_library_bridge/test.py::test_server_restart_bridge_might_be_still_alive 54.68s setup test_keeper_internal_secure/test.py::test_secure_raft_works_with_password 46.20s teardown test_materialized_mysql_database/test.py::test_default_values 14.51s teardown test_materialized_mysql_database/test.py::test_binlog_client 6.46s teardown test_keeper_internal_secure/test.py::test_secure_raft_works_with_password 5.08s teardown test_library_bridge/test.py::test_ssrf 0.70s call test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_8_0 0.64s call test_materialized_mysql_database/test.py::test_create_table_as_select 0.54s call test_materialized_mysql_database/test.py::test_create_database_without_mysql_connection 0.52s call test_library_bridge/test.py::test_ssrf 0.49s call test_materialized_mysql_database/test.py::test_default_values 0.00s teardown test_library_bridge/test.py::test_server_restart_bridge_might_be_still_alive 0.00s setup test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_5_7 0.00s teardown test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_5_7 0.00s setup test_materialized_mysql_database/test.py::test_default_values 0.00s setup test_library_bridge/test.py::test_ssrf 0.00s teardown test_materialized_mysql_database/test.py::test_create_database_without_mysql_connection 0.00s setup test_materialized_mysql_database/test.py::test_create_table_as_select 0.00s setup test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_8_0 0.00s setup test_materialized_mysql_database/test.py::test_create_database_without_mysql_connection 0.00s teardown test_materialized_mysql_database/test.py::test_create_table_as_select 0.00s teardown test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_8_0 =========================== short test summary info ============================ FAILED test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_5_7 FAILED test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_8_0 FAILED test_materialized_mysql_database/test.py::test_create_database_without_mysql_connection FAILED test_materialized_mysql_database/test.py::test_create_table_as_select FAILED test_materialized_mysql_database/test.py::test_default_values - helper... PASSED test_keeper_internal_secure/test.py::test_secure_raft_works_with_password PASSED test_library_bridge/test.py::test_server_restart_bridge_might_be_still_alive PASSED test_materialized_mysql_database/test.py::test_binlog_client SKIPPED [1] test_library_bridge/test.py:354: Sanitizer cannot work with third-party shared libraries ============= 5 failed, 3 passed, 1 skipped in 1444.13s (0:24:04) ============== Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 445, in subprocess.check_call(cmd, shell=True) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_996mye --privileged --dns-search='.' --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=2cffe1eae894 -e DOCKER_BASE_TAG=1e0b53d756cf -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=caad4729259e -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=1 --color=no --durations=0 test_keeper_internal_secure/test.py::test_secure_raft_works_with_password test_library_bridge/test.py::test_server_restart_bridge_might_be_still_alive test_library_bridge/test.py::test_ssrf test_materialized_mysql_database/test.py::test_binlog_client test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_5_7 test_materialized_mysql_database/test.py::test_clickhouse_killed_while_insert_8_0 test_materialized_mysql_database/test.py::test_create_database_without_mysql_connection test_materialized_mysql_database/test.py::test_create_table_as_select test_materialized_mysql_database/test.py::test_default_values -vvv" altinityinfra/integration-tests-runner:37a9815fd2fa ' returned non-zero exit status 1.